home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / emula / arosdv19.lha / AROS / intuition / unlockpubscreen.c < prev    next >
C/C++ Source or Header  |  1996-10-24  |  1KB  |  57 lines

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: unlockpubscreen.c,v 1.2 1996/10/24 15:51:25 aros Exp $
  4.     $Log: unlockpubscreen.c,v $
  5.     Revision 1.2  1996/10/24 15:51:25  aros
  6.     Use the official AROS macros over the __AROS versions.
  7.  
  8.     Revision 1.1  1996/09/21 15:48:47  digulla
  9.     New functions to handle Public Screens
  10.  
  11.  
  12.     Desc:
  13.     Lang: english
  14. */
  15. #include "intuition_intern.h"
  16.  
  17. /*****************************************************************************
  18.  
  19.     NAME */
  20.     #include <clib/intuition_protos.h>
  21.  
  22.     AROS_LH2(void, UnlockPubScreen,
  23.  
  24. /*  SYNOPSIS */
  25.     AROS_LHA(UBYTE         *, name, A0),
  26.     AROS_LHA(struct Screen *, screen, A1),
  27.  
  28. /*  LOCATION */
  29.     struct IntuitionBase *, IntuitionBase, 86, Intuition)
  30.  
  31. /*  FUNCTION
  32.  
  33.     INPUTS
  34.  
  35.     RESULT
  36.  
  37.     NOTES
  38.  
  39.     EXAMPLE
  40.  
  41.     BUGS
  42.  
  43.     SEE ALSO
  44.  
  45.     INTERNALS
  46.  
  47.     HISTORY
  48.     29-10-95    digulla automatically created from
  49.                 intuition_lib.fd and clib/intuition_protos.h
  50.  
  51. *****************************************************************************/
  52. {
  53.     AROS_LIBFUNC_INIT
  54.     AROS_LIBBASE_EXT_DECL(struct IntuitionBase *,IntuitionBase)
  55.     AROS_LIBFUNC_EXIT
  56. } /* UnlockPubScreen */
  57.